Saltar al contenido principal
POST
/
v2
/
events
/
beta
/
link-users
[Beta] Report Link Users
curl --request POST \
  --url https://api.topsort.com/v2/events/beta/link-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "from": "<string>",
  "to": "<string>"
}
'
{
  "errCode": "bad_request",
  "docUrl": "<string>",
  "message": "<string>"
}

Autorizaciones

Authorization
string
header
requerido

A valid API key generated in Topsort's UI.

Cuerpo

application/json

Request to link multiple user IDs that represent the same user.

from
string
requerido

The opaque user ID of the original user account.

Required string length: 1 - 64
Ejemplo:

"user_abc123"

to
string
requerido

The opaque user ID of the target user account to be linked.

Required string length: 1 - 64
Ejemplo:

"user_xyz789"

Respuesta

Users account link was reported successfully.